home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / Sample Code Notes (ProDOS) / SCN02BusyBox < prev    next >
Encoding:
Text File  |  1990-06-24  |  2.5 KB  |  58 lines  |  [TEXT/pdos]

  1. Apple II
  2. Sample Code Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6. #2:    BusyBox
  7.  
  8. Version:    3.0                                                     June 1990
  9.  
  10. APW Components
  11.  
  12. Assembly:            C:                Pascal:
  13. Busy.asm             Busy.c            Busy.p
  14. BusyBox.rez          BusyBox.rez       BusyBox.r
  15. BusyBox.equ          BusyBox.h         UGlobals.p
  16. UGlobals.asm         UGlobals.c        UWindow.p
  17. UWindow.asm          UWindow.c         UMenu.p
  18. UMenu.asm            UMenu.c           UEvent.p
  19. UEvent.asm           UEvent.c          UUtils.p
  20. UUtils.asm           UUtils.c
  21. Build                BusyBox.Link
  22. Build.Macros         Build
  23. Build.r              Build.r
  24. Full.Build           Full.Build
  25.  
  26. MPW Components
  27.  
  28. Assembly:            C:                Pascal:
  29. Busy.Aii             Busy.c            Busy.p
  30. BusyBox.r            BusyBox.r         BusyBox.r
  31. BusyBox.equ          BusyBox.h         UGlobals.p
  32. UGlobals.Aii         UGlobals.c        UWindow.p
  33. UWindow.Aii          UWindow.c         UMenu.p
  34. UMenu.Aii            UMenu.c           UEvent.p
  35. UEvent.Aii           UEvent.c          UUtils.p
  36. UUtils.Aii           UUtils.c          MakeFile
  37. MakeFile             MakeFile
  38.  
  39. BusyBox demonstrates general uses of new Apple IIGS System Software 5.0 
  40. features.  This sample specifically shows how little an application needs to 
  41. do to get a lot done and how much is automatically handled by the toolbox.  It 
  42. uses NewWindow2 and TaskMaster extensively.
  43. _____________________________________________________________________________
  44.  
  45. APW 65816 assembly language users need APW v.1.0, APW Tools & Interfaces 
  46. v.1.1, and Apple IIGS System Software 5.0.2 or later.  APW C language users 
  47. additionally need APW C v.1.0.  Four APW command files, Full.Build, Build, 
  48. Build.r, and Build.Macros (for assembly users) allow you to perform complete 
  49. or partial rebuilds of the load file BusyBox.  The Pascal source code included 
  50. on the APW disk is the MPW IIGS Pascal source code for BusyBox.  It is 
  51. included so Pascal programmers using native IIGS Pascal development 
  52. environments can easily port this code to their development environment.
  53.  
  54. MPW IIGS users need MPW v.3.0, MPW IIGS Tools v.1.1, and either MPW IIGS 
  55. Assembler v.1.0 or later, or MPW IIGS C v.1.0 or later, or MPW IIGS Pascal 
  56. v.1.0 or later.  The name needed by the MPW Build menu's Build option can be 
  57. found in the MakeFile.
  58.